home *** CD-ROM | disk | FTP | other *** search
/ The Virtual Portfolio - N…a Showcase - Book 5 1995 / VIRTUAL [md5 EC7DB5CC033E38E511F666CE80BCE509].ISO / mac / Main / VP.mac / 00109.ls < prev    next >
Encoding:
Text File  |  1995-07-18  |  442 b   |  24 lines

  1. on enterFrame
  2.   repeat with channel = 26 to 29
  3.     set the visible of sprite channel to 0
  4.   end repeat
  5.   if rollOver(26) then
  6.     set the visible of sprite 26 to 1
  7.   end if
  8.   if rollOver(27) then
  9.     set the visible of sprite 27 to 1
  10.   end if
  11.   if rollOver(28) then
  12.     set the visible of sprite 28 to 1
  13.   end if
  14.   if rollOver(29) then
  15.     set the visible of sprite 29 to 1
  16.   else
  17.     nothing()
  18.   end if
  19. end
  20.  
  21. on exitFrame
  22.   go(marker(0))
  23. end
  24.